home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 1_2002.ISO / Data / Zips / CODE_UPLOAD79487202000.psc / CL Installer / frmMain.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  2000-07-20  |  2.4 KB  |  79 lines

  1. VERSION 5.00
  2. Begin VB.Form frmMain 
  3.    BackColor       =   &H80000001&
  4.    BorderStyle     =   1  'Fixed Single
  5.    Caption         =   "CALL LOGGER    setup program"
  6.    ClientHeight    =   3210
  7.    ClientLeft      =   45
  8.    ClientTop       =   330
  9.    ClientWidth     =   7290
  10.    ControlBox      =   0   'False
  11.    Icon            =   "frmMain.frx":0000
  12.    LinkTopic       =   "Form1"
  13.    MaxButton       =   0   'False
  14.    MinButton       =   0   'False
  15.    ScaleHeight     =   3210
  16.    ScaleWidth      =   7290
  17.    StartUpPosition =   2  'CenterScreen
  18.    Begin VB.CommandButton Command1 
  19.       Caption         =   "Command1"
  20.       Height          =   255
  21.       Left            =   1200
  22.       TabIndex        =   0
  23.       Top             =   3360
  24.       Width           =   975
  25.    End
  26.    Begin VB.CommandButton cmdCancel 
  27.       BackColor       =   &H80000001&
  28.       Caption         =   "&Cancel"
  29.       Height          =   375
  30.       Left            =   5040
  31.       Style           =   1  'Graphical
  32.       TabIndex        =   2
  33.       TabStop         =   0   'False
  34.       ToolTipText     =   "Click here to cancel the installation"
  35.       Top             =   2760
  36.       Width           =   1095
  37.    End
  38.    Begin VB.CommandButton cmdNext 
  39.       BackColor       =   &H80000001&
  40.       Caption         =   "&Next       >"
  41.       Height          =   375
  42.       Left            =   6120
  43.       Style           =   1  'Graphical
  44.       TabIndex        =   3
  45.       TabStop         =   0   'False
  46.       Top             =   2760
  47.       Width           =   1095
  48.    End
  49.    Begin VB.Label lblWelcome 
  50.       BackStyle       =   0  'Transparent
  51.       Caption         =   $"frmMain.frx":030A
  52.       BeginProperty Font 
  53.          Name            =   "@Batang"
  54.          Size            =   12
  55.          Charset         =   0
  56.          Weight          =   700
  57.          Underline       =   0   'False
  58.          Italic          =   -1  'True
  59.          Strikethrough   =   0   'False
  60.       EndProperty
  61.       Height          =   2775
  62.       Left            =   120
  63.       TabIndex        =   1
  64.       Top             =   120
  65.       Width           =   6975
  66.    End
  67. Attribute VB_Name = "frmMain"
  68. Attribute VB_GlobalNameSpace = False
  69. Attribute VB_Creatable = False
  70. Attribute VB_PredeclaredId = True
  71. Attribute VB_Exposed = False
  72. Private Sub cmdCancel_Click()
  73. Cancel
  74. End Sub
  75. Private Sub cmdNext_Click()
  76. Me.Hide
  77. frmInstall.Show
  78. End Sub
  79.